home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 25 / CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso / CUCD / Programming / QuakeTools / src / libqbuild / nodraw.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-11  |  621 b   |  65 lines

  1. #define    LIBQBUILD_CORE
  2. #include "../include/libqbuild.h"
  3.  
  4. bool drawflag = FALSE;
  5.  
  6. void Draw_Init(void)
  7. {
  8. }
  9.  
  10. void Draw_Exit(void)
  11. {
  12. }
  13.  
  14. void Draw_ClearBounds(void)
  15. {
  16. }
  17.  
  18. void Draw_AddToBounds(vec3_t v)
  19. {
  20. }
  21.  
  22. void Draw_DrawFace(struct visfacet * f)
  23. {
  24. }
  25.  
  26. void Draw_ClearWindow(void)
  27. {
  28. }
  29.  
  30. void Draw_SetRed(void)
  31. {
  32. }
  33.  
  34. void Draw_SetGrey(void)
  35. {
  36. }
  37.  
  38. void Draw_SetBlack(void)
  39. {
  40. }
  41.  
  42. void DrawPoint(vec3_t v)
  43. {
  44. }
  45.  
  46. void DrawLeaf(struct node * l, int color)
  47. {
  48. }
  49.  
  50. void DrawBrush(struct brush * b)
  51. {
  52. }
  53.  
  54. void DrawWinding(struct winding * w)
  55. {
  56. }
  57.  
  58. void DrawTri(vec3_t p1, vec3_t p2, vec3_t p3)
  59. {
  60. }
  61.  
  62. void DrawPortal(struct portal * portal)
  63. {
  64. }
  65.